home *** CD-ROM | disk | FTP | other *** search
- /* abc.h
- *
- * Local definitions to improve readability
- *
- */
-
- #define True 1
- #define False 0
- #define Nil 0
- #define and &&
- #define or ||
- #define not !
- #define equals ==
- #define notequal !=
-
-
- /* unsigned longs and shorts
- * (unsigned longs may not be
- * available with all compilers
- */
- #define ushort unsigned short
- #define ulong unsigned long
- #define uchar unsigned char
-
- /* General purpose external routines
- * String conversion routines
- * return a pointer to a char
- */
- extern char *CtoPstr();
- extern char *PtoCstr();
-
-